home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / stdio / fprintf.c < prev    next >
C/C++ Source or Header  |  1999-01-01  |  218b  |  12 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3.  
  4. int fprintf(FILE *stream,const char *format,...)
  5. { int retval;
  6.   va_list args;
  7.   va_start(args,format);
  8.   retval=vfprintf(stream,format,args);
  9.   va_end(args);
  10.   return retval;
  11. }
  12.